home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / devSmem.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  36 lines

  1. /*
  2.  * devSmem.h --
  3.  *
  4.  *    Declarations of  procedures for the /dev/smem device.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/devSmem.h,v 9.1 92/08/13 15:53:53 secor Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVSMEM
  20. #define _DEVSMEM
  21.  
  22. /*
  23.  * Forward Declarations.
  24.  */
  25.  
  26. extern ReturnStatus Dev_SmemRead _ARGS_((Fs_Device *devicePtr,
  27.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  28. extern ReturnStatus Dev_SmemWrite _ARGS_((Fs_Device *devicePtr,
  29.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  30. extern ReturnStatus Dev_SmemIOControl _ARGS_((Fs_Device *devicePtr,
  31.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  32. extern ReturnStatus Dev_SmemSelect _ARGS_((Fs_Device *devicePtr, int *readPtr,
  33.     int *writePtr, int *exceptPtr));
  34.  
  35. #endif /* _DEVSMEM */
  36.